home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 September
/
PCWorld_2008-09_cd.bin
/
v cisle
/
sadanastroju
/
clipmarks-3.5.0-fx.xpi
/
chrome
/
clipmarks.jar
/
content
/
save-overlimit.xul
< prev
next >
Wrap
Extensible Markup Language
|
2007-12-05
|
860b
|
30 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<dialog id="Clipmarks_SaveOverlimitDialog" title="Private saving only"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="accept,cancel" buttonlabelaccept="Save Privately" buttonlabelcancel="Edit Clip"
ondialogaccept="return accept_click();"
ondialogcancel="return cancel_click();"
onload="window_load();">
<script>
function window_load() {
document.documentElement.getButton("accept").focus();
}
function accept_click() {
window.opener.setTimeout('Clipmarks_Save()', 50);
return true;
}
function cancel_click() {
return true;
}
</script>
<image src="http://content.clipmarks.com/images/less_is_more_dialog_share.gif" width="300" height="331" />
</dialog>